2007-02-04 Tor Lillqvist <tml@novell.com>
* gdk/win32/gdkcursor-win32.c: Don't define BITMAPV5HEADER on
mingw with w32api >= 3.8, which has it in wingdi.h. (#403896)
svn path=/trunk/; revision=17256
+2007-02-04 Tor Lillqvist <tml@novell.com>
+
+ * gdk/win32/gdkcursor-win32.c: Don't define BITMAPV5HEADER on
+ mingw with w32api >= 3.8, which has it in wingdi.h. (#403896)
+
2007-02-02 Kristian Rietveld <kris@gtk.org>
* gtk/gtktreeview.c (gtk_tree_view_row_changed): remove unused
#include "gdkcursor.h"
#include "gdkprivate-win32.h"
+#ifdef __MINGW32__
+#include <w32api.h>
+#endif
+
#include "xcursors.h"
-#if defined(__MINGW32__) || (defined(_MSC_VER) && (WINVER < 0x0500))
+#if (defined(__MINGW32__) && __W32API_MAJOR_VERSION <= 3 && __W32API_MINOR_VERSION < 8) || (defined(_MSC_VER) && (WINVER < 0x0500))
typedef struct {
DWORD bV5Size;
LONG bV5Width;